home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / apps / math / ols.zoo / fatal.c < prev    next >
C/C++ Source or Header  |  1993-04-16  |  430b  |  24 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "utils.h"
  4. /* for error checking. */
  5.  
  6. #ifdef TESTING
  7. int 
  8. main ()
  9. {
  10.   FatalError ("You are lost in a maze of twisty little passages, all alike.\n");
  11.   return 0;
  12. }
  13.  
  14. #endif
  15.  
  16. void 
  17. FatalError (char *error_text)
  18. {
  19.   fprintf (stderr, "Run-time error...\n");
  20.   fprintf (stderr, "%s\n", error_text);
  21.   fprintf (stderr, "...now exiting to system...\n");
  22.   exit (1);
  23. }
  24.